3b360d4f34d5f2ba4f8149d42be5ec7e575f48e2,java/java-impl/src/com/intellij/refactoring/introduceParameter/InplaceIntroduceParameterPopup.java,InplaceIntroduceParameterPopup,InplaceIntroduceParameterPopup,#Project#Editor#List#TypeSelectorManagerImpl#PsiExpression#PsiLocalVariable#PsiMethod#PsiMethod#PsiExpression[]#TIntArrayList#boolean#,63

Before Change


      }
    };
    myPanel.append2MainPanel(myWholePanel);
    myWholePanel.add(typeComponent(), new GridBagConstraints(0, GridBagConstraints.RELATIVE, 2, 1, 1, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.HORIZONTAL,
                                                                           new Insets(0,0,0,0), 0,0));
  }

After Change


      }
    };
    myPanel.append2MainPanel(myWholePanel);
    JComponent typeChooser = typeComponent();
    if (typeChooser != null) {
      myWholePanel.add(typeChooser, new GridBagConstraints(0, GridBagConstraints.RELATIVE, 2, 1, 1, 0, GridBagConstraints.NORTHWEST, GridBagConstraints.HORIZONTAL,
                                                                             new Insets(0,0,0,0), 0,0));
    }